@Test public void aTestThatAlwaysFails() { context.checking(new Expectations() { { } }); testDoubleDie.roll(); }
You need to enable Javascript in your browser to edit pages.
help on how to format text
Why does this fail? Assuming two things:
The any use of any method not explicitly stated in the Expectations will cause an unexpected invocation.
<--Back